home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * Note: If there is a quotation mark character within the text for a field, you must
- * escape that character using the . e.g. ...including the "Outer Dark" story arc...
- */
-
- // Define data arrays for each data field.
- // Do not change these definitions.
-
- var catIndex = -1;
- var catTitle = new Array(); //the title of the category as displayed on the webpage
- var catDir = new Array(); //the relative pathname to the directory of the category
-
-
- // Make changes to this file below.
- // Insert data into the arrays below.
-
-
- // next item
- catIndex++;
- catTitle[catIndex] = "BEST SELLERS";
- catDir[catIndex] = "bestsellers";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "DC UNIVERSE";
- catDir[catIndex] = "dcuniverse";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "BATMAN";
- catDir[catIndex] = "batman";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "SUPERMAN";
- catDir[catIndex] = "superman";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "ARCHIVES";
- catDir[catIndex] = "archives";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "VERTIGO";
- catDir[catIndex] = "vertigo";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "WILDSTORM";
- catDir[catIndex] = "wildstorm";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "WILL EISNER LIBRARY";
- catDir[catIndex] = "eisner";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "MAD";
- catDir[catIndex] = "mad";
-
- // next item
- catIndex++;
- catTitle[catIndex] = "PARADOX";
- catDir[catIndex] = "paradox";
-